home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / filutil / sl_cut11.zip / ENGLISH / CUT.DOC next >
Text File  |  1995-01-23  |  4KB  |  108 lines

  1.  
  2.  
  3.                                     CUT
  4.  
  5.                              by Stephan Löscher
  6.  
  7.                                 Version 1.1
  8.  
  9.  
  10. CUT deletes characters from standard-input, similar to UNIX cut.
  11.  
  12. SYNTAX:   cut b c
  13.  
  14. b: begin,   c: count,   textinput from STDIN.
  15.  
  16. Examples:
  17.  
  18. subst | grep D: | cut 1 6 | setpipe ScanDir
  19.  
  20. Deleting of all first characters from every line of a text:
  21. type text.txt | cut 1 1 > new.txt
  22.  
  23.  
  24. Copyright (c) 1994,1995 by Stephan Löscher  -  all rights reserved
  25. My Adress:      Stephan Löscher, Dr.Troll-str. 3, 82194 Gröbenzell, Germany
  26. Internet email: loescher@informatik.tu-muenchen.de   or   loescher@leo.org
  27. WWW:
  28. http://www.informatik.tu-muenchen.de/cgi-bin/nph-gateway/hphalle3/~loescher/
  29.  
  30. You may find the latest version of this program, where you got this copy,
  31. or via FTP on FTP.LEO.ORG (Use "site exec search" to locate it.)
  32. Try a new dimension of archive access: http://www.leo.org/archiv/start.html
  33.  
  34.  
  35. This program is freeware.
  36. It is NOT Public-Domain-Software!
  37. The author (Stephan Löscher) does NOT give up his copyright, but he reserves
  38. his copyright. Usage and copying is free of charge for private use, but NOT
  39. for commercial use!
  40.  
  41. You may and should copy this program free of charge, use it,
  42. give it to your friends, upload it to a BBS or something similar, under the
  43. following conditions:
  44.  
  45.  * Don't charge any money for it.  If you upload it to a BBS, make sure that
  46.    it can be downloaded free (without paying for downloading it, except
  47.    for usage fees that have to be paid anyway).  Small copying fees (up to
  48.    5 DM or 3 $US) may be charged.
  49.  * Only distribute the whole original package, with all the files included.
  50.  * This program may not be part of any commercial product or service without
  51.    the written permission by the author.
  52.  * If you want to include QPEG on a CD-ROM and/or book, please send me
  53.    a free copy of the CD/book (this is not a must, but I would appreciate
  54.    it very much).
  55.  
  56. Distribution of the program is explicitly desired, provided that the above
  57. conditions are accepted.
  58.  
  59.  
  60. YOU ARE USING THIS PROGRAM AT YOUR OWN RISK! THE AUTHOR (STEPHAN LÖSCHER)
  61. IS NOT LIABLE FOR ANY DAMAGE OR DATA-LOSS CAUSED BY THE USE OF THIS PROGRAM
  62. OR BY THE INABILITY TO USE THIS PROGRAM. IF YOU ARE NOT SURE ABOUT THIS, OR
  63. IF YOU DON'T ACCEPT THIS, THEN DO NOT USE THIS PROGRAM!
  64. BECAUSE OF THE VARIOUS HARDWARE AND SOFTWARE ENVIRONMENTS INTO WHICH THIS
  65. PROGRAM MAY BE PUT, NO WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE IS
  66. OFFERED.
  67. GOOD DATA PROCESSING PROCEDURE DICTATES THAT ANY PROGRAM BE THOROUGHLY
  68. TESTED WITH NON-CRITICAL DATA BEFORE RELYING ON IT.
  69.  
  70.  
  71. No part of this documentation may be reproduced, transmitted, transcribed,
  72. stored in any retrieval system, or translated into any other language in
  73. whole or in part, in any form or by any means, whether it be electronic,
  74. mechanical, magnetic, optical, manual or otherwise, without prior written
  75. consent of the author, Stephan Löscher.
  76.  
  77. You may not make any changes or modifications to this software or this
  78. manual. You may not decompile, disassemble, or otherwise reverse-engineer
  79. the software in any way.
  80.  
  81. If you believe your copy of this software has been tampered or altered in
  82. anyway, shape or form, please contact me immediately! Do not hesitate a
  83. moment to inform me. Remember, this software should be available to all, in
  84. the original form, so please do not accept modified or damaged versions of
  85. my software.
  86.  
  87.  
  88. The author reserves his right for taking legal steps if the copyright or the
  89. license agreement is violated.
  90.  
  91.  
  92. All product names mentioned in this software are trademarks or registered
  93. trademarks of their respective owners.
  94.  
  95.  
  96. If you have any questions, ideas, suggestions for improvements or if you find
  97. bugs (I don't hope so.) then feel free to contact me. (Email is appreciated.)
  98.  
  99. I'm not a native english speaker. If you are one and discover same strange
  100. sounding parts in this documentation or in the program, please, feel free
  101. to point it out to me and give me suggestions for alteration!
  102.  
  103. This program  was created using Borland Pascal with Objects Copyright Borland
  104. International 1992.
  105.  
  106.  
  107.  
  108.